github.com/klauspost/compress/zstd.fseDecoder.actualTableLog (field)

16 uses

	github.com/klauspost/compress/zstd (current package)
		fse_decoder.go#L37: 	actualTableLog uint8                   // Selected tablelog.
		fse_decoder.go#L69: 	s.actualTableLog = uint8(nbBits)
		fse_decoder.go#L179: 	if gotTotal != 1<<s.actualTableLog {
		fse_decoder.go#L180: 		return fmt.Errorf("corruption detected (total %d != %d)", gotTotal, 1<<s.actualTableLog)
		fse_decoder.go#L202: 	fatalErr(binary.Read(r, binary.LittleEndian, &s.actualTableLog))
		fse_decoder.go#L266: 	s.actualTableLog = 0
		fse_decoder.go#L275: 	tableSize := uint16(1 << s.actualTableLog)
		fse_predefined.go#L116: 				f.actualTableLog = 6
		fse_predefined.go#L123: 				f.actualTableLog = 5
		fse_predefined.go#L130: 				f.actualTableLog = 6
		fse_predefined.go#L150: 			enc.actualTableLog = f.actualTableLog
		seqdec.go#L58: 	s.state.init(br, s.fse.actualTableLog, s.fse.dt[:1<<s.fse.actualTableLog])
		seqdec_amd64.go#L255: 	lte56bits := s.maxBits+s.offsets.fse.actualTableLog+s.matchLengths.fse.actualTableLog+s.litLengths.fse.actualTableLog <= 56